home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1995 #5 & #6
/
Amiga Plus CD - 1995 - No. 5 and 6.iso
/
pd
/
grafik
/
superviewel
/
arexx-scripts
/
convertfile.rx
next >
Wrap
Text File
|
1995-08-02
|
783b
|
40 lines
/*
$VER: ConvertFile.rx V4.53 (1.4.95)
© 1993-95 by Andreas R. Kleinert
This script demonstrates loading, saving (converting) and
displaying files by using SuperView's ARexxPort.
*/
address command
SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx : SuperView has been started : Waiting three seconds ..."
wait 3
say "ARexx : Loading a GIF Graphics via the LOAD command"
address 'SuperView.rx' "LOAD=/Bonus/SuperView.GIF"
say "ARexx : Saving Graphics as BMP V3.00"
address 'SuperView.rx' "SAVE_TYPE=BMP V3.00"
address 'SuperView.rx' "SAVE=SuperView.bmp"
wait 3
say "ARexx : Load this BMP Gfx now for control"
address 'SuperView.rx' "SHOW=SuperView.bmp"
say "ARexx : O.K. : Let's quit !"
Wait 2
address 'SuperView.rx' "QUIT"
exit